CLNG Function ---------------------------------------------------------------------------- Action Converts a numeric expression to a long (4-byte) integer by rounding the fractional part of the expression. Syntax CLNG( numeric-expression) Remarks If numeric-expression is not between -2,147,483,648 and 2,147,483,647, inclusive, BASIC generates the error message Overflow. See Also CCUR, CDBL, CINT, CSNG Example The following example shows how CLNG rounds before converting the number. A=32767.45 B=32767.55 PRINT CLNG(A); CLNG(B) Output 32767 32768